home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000094_news@newsmaster….columbia.edu _Tue May 19 17:31:41 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA23923
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 19 May 1998 17:31:41 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA00613
  7.     for kermit.misc@watsun; Tue, 19 May 1998 17:31:40 -0400 (EDT)
  8. Path: news.columbia.edu!panix!nntprelay.mathworks.com!newsfeed.internetmci.com!206.229.87.25!news-peer.sprintlink.net!news-backup-west.sprintlink.net!news.sprintlink.net!129.174.1.8!portal.gmu.edu!rmalghan
  9. From: rmalghan@site.gmu.edu (Ravi Malghan)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Paging from Unix prompt?
  12. Date: 19 May 1998 21:29:06 GMT
  13. Organization: George Mason University, Fairfax, Virginia, USA
  14. Lines: 32
  15. Message-ID: <6jstj2$6mc@portal.gmu.edu>
  16. NNTP-Posting-Host: bacon.gmu.edu
  17. Mime-Version: 1.0
  18. Content-Type: text/plain; charset=US-ASCII
  19. Content-Transfer-Encoding: 7bit
  20. X-Newsreader: TIN [version 1.2 PL2]
  21. Xref: news.columbia.edu comp.protocols.kermit.misc:8747
  22.  
  23. Hi,
  24. I have a script which takes three variables and I am able to send a page from
  25. the C-Kermit prompt. But I need to implement such that I can page from the 
  26. Unix prompt (possibly from other applications as a system command). right
  27. now I have a macro defined as following. Could somebody please help me.
  28. =====
  29. define DIAL_PAGE {
  30. set modem type usr      ;
  31. set port /dev/ttya     ;
  32. set speed 9600         ;
  33. set dial display on     ;
  34. dial \%1        ;
  35.  
  36. }
  37.  
  38. define NPAGE {
  39. set dial timeout 240    ;
  40. DIAL_PAGE \%1@\%2#\%3##;
  41. clear dial-status       ;
  42. hangup  ;
  43. }        
  44. ======
  45. Thank you
  46.  
  47. ********************
  48. Ravi Malghan
  49. Tel: (O) (703) 207 7924
  50.      (H) (703) 385 0847
  51. e-mail: rmalghan@bacon.gmu.edu
  52. WWW : http://bacon.gmu.edu/~rmalghan
  53. ********************* 
  54.